Prev Next |
Read-only integration is the simplest level of integration to implement. This allows items in the external storage to be displayed in the Sitecore clients or a web site. The items, however, cannot be changed via the Sitecore clients.
When integrating at this level, the following methods are of particular interest:
Return Value |
Method Name |
Parameters |
Description |
ItemDefinition |
ID itemID
|
Returns an item descriptor for the item associated with the given item ID. |
|
FieldList |
ItemDefinition item
|
Returns the specified item’s fields filled with values from the data source. |
|
IDList |
ItemDefinition item
|
Returns the IDs of the given item’s children. |
|
ID |
ItemDefinition item
|
Returns the ID of the given item’s parent. |
|
ID |
CallContext context
|
Returns the ID of the data source’s root item. |
|
TemplateCollection |
CallContext context |
Returns the collection of templates which define the items available in this data source. |
Prev Next